/* -------------------- */
/* Hero Section */
/* -------------------- */
.hero .container {
  display: flex;
  align-items: center;
  min-height: clamp(300px, 45vw, 520px);
  /* gap: 20px; */
}
.hero {
  padding-bottom: 20px !important;
}

/* ── Left — 60% ── */
.hero__left {
  position: relative;
  flex: 0 0 60%;
  width: 60%;
  height: clamp(300px, 42vw, 520px);
  margin-left: calc(-1 * var(--padding-x));
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.8s cubic-bezier(0.22, 0.68, 0, 1.2) 0.1s forwards;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.hero__pet {
  position: absolute;
  bottom: -30px;
  left: 35%;
  transform: translateX(-50%);
  width: 100%;
  /* height: 95%; */
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
}

/* ── Right — 40% ── */
.hero__content {
  flex: 0 0 40%;
  width: 40%;
  /* min-width: 0; */
  padding-left: clamp(1rem, 2vw, 2rem);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 0.68, 0, 1.2) 0.35s forwards;
}

.hero__title {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 500;
  line-height: 1 !important;
  color: var(--color-text);
}
.hero__content p {
  font-size: 20px;
  margin-top: 10px;
}
.hero__title .hl {
  background: var(--color-accent);
  color: #fff;
  /* padding: 0.04em 0.2em; */
  padding: -15px 5px;
  /* border-radius: 3px; */
  display: inline;
  line-height: 1.5 !important;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    min-height: auto;
    gap: 1.5rem;
  }
  .hero__left,
  .hero__content {
    flex: none;
    width: 100%;
  }
  .hero__pet {
    bottom: -10px;
    left: 41%;
  }
  .hero__left {
    height: clamp(220px, 70vw, 380px);
    margin-left: calc(-1 * var(--padding-x));
    width: calc(100% + var(--padding-x));
  }
  .hero__content {
    padding-left: 14px;
    margin-top: 10px;
  }
  .hero__content p {
    font-size: 15px;
    line-height: 1.4;
  }
  /* .hero__title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  } */
}

/* -------------------- */
/* ROLE BENEFITS SECTION */
/* -------------------- */

.role-benefits-section {
  background: #f4f6ff;
  overflow: hidden;
}

.role-benefits-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.role-benefits-head span {
  display: inline-block;
  color: var(--color-accent);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.role-benefits-head h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.role-benefits-head p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.6;
  color: #4f5f7a;
}

/* DESKTOP CENTERED TWO CARDS */

.role-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(360px, 460px));
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.role-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: clamp(1.4rem, 2vw, 2rem);
  padding: clamp(1.7rem, 3vw, 2.4rem);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 45px rgba(0, 95, 168, 0.08);
  transition: 0.35s ease;
}

.role-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(244, 91, 31, 0.12);
}

.vet-card::after {
  background: rgba(0, 95, 168, 0.12);
}

.role-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 95, 168, 0.14);
}

.role-icon-img {
  position: relative;
  z-index: 2;
  width: clamp(95px, 8vw, 130px);
  height: clamp(95px, 8vw, 130px);
  margin-bottom: 1.2rem;
}

.role-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.role-card h3 {
  position: relative;
  z-index: 2;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 600;
  color: #111111;
  margin-bottom: 0.8rem;
}

.role-desc {
  position: relative;
  z-index: 2;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  color: #4f5f7a;
  margin-bottom: 1.4rem;
}

.role-card ul {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
}

.role-card li {
  list-style: none;
  position: relative;
  padding-left: 1.8rem;
  font-size: clamp(0.86rem, 1vw, 0.96rem);
  line-height: 1.45;
  color: #334155;
}

.role-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  font-size: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vet-card li::before {
  background: var(--color-primary);
}

.know-more-link {
  position: relative;
  z-index: 2;
  width: fit-content;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.pet-card .know-more-link {
  color: var(--color-accent);
}

.role-btn {
  position: relative;
  z-index: 2;
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
  font-weight: 700;
  color: #ffffff;
  transition: 0.3s ease;
}

.orange-btn {
  background: var(--color-accent);
}

.blue-btn {
  background: #2f68df;
}

.role-btn:hover {
  transform: translateY(-2px);
}

.role-slider-dots {
  display: none;
}

/* -------------------- */
/* MOBILE SLIDER */
/* -------------------- */

@media (max-width: 768px) {
  .role-slider-wrap {
    margin-inline: calc(var(--padding-x) * -1);
    overflow: hidden;
  }

  .role-benefits-grid {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--padding-x);
    padding-inline: var(--padding-x);
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .role-benefits-grid::-webkit-scrollbar {
    display: none;
  }

  .role-card {
    flex: 0 0 86%;
    max-width: 430px;
    min-height: 560px;
    scroll-snap-align: start;
    padding: 1.5rem;
    border-radius: 24px;
  }

  .role-icon-img {
    width: 95px;
    height: 95px;
  }

  .role-card h3 {
    font-size: 1.65rem;
  }

  .role-card li {
    font-size: 0.9rem;
  }

  .role-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .role-slider-dots button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(47, 104, 223, 0.25);
    transition: 0.3s ease;
  }

  .role-slider-dots button.active {
    width: 28px;
    background: #2f68df;
  }
}

@media (max-width: 420px) {
  .role-card {
    flex-basis: 88%;
    min-height: 570px;
    padding: 1.25rem;
  }

  .role-icon-img {
    width: 82px;
    height: 82px;
  }

  .role-card h3 {
    font-size: 1.45rem;
  }

  .role-desc,
  .role-card li {
    font-size: 0.84rem;
  }

  .role-btn {
    width: 100%;
  }
}

/* -------------------- */
/* ASSOCIATE STRIP */
/* -------------------- */

.associate-strip-section {
  background: #f4f6ff;
  padding-block: clamp(2rem, 5vw, 4rem);
}

.associate-strip {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(106, 188, 252, 0.82), rgba(0, 66, 116, 0.82)),
    url("../assets/pet_clinik.jpg");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: clamp(1.5rem, 3vw, 2.4rem);
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(0, 95, 168, 0.18);
}

/* .associate-strip::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: clamp(180px, 18vw, 280px);
  height: clamp(180px, 18vw, 280px);
  border-radius: 50%;
  background: var(--sky-color-bg);
} */

.associate-strip-content {
  position: relative;
  z-index: 2;
}

.associate-strip-content span {
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  opacity: 0.85;
}

.associate-strip-content h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.associate-strip-content p {
  max-width: 620px;
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

.associate-strip-btn {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.95rem 1.6rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  transition: 0.3s ease;
}

.associate-strip-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  color: var(--color-primary);
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 768px) {
  .associate-strip {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .associate-strip-btn {
    width: 100%;
    max-width: 260px;
  }
}

/* -------------------- */
/* APPS SECTION */
/* -------------------- */

.apps-section {
  background: #ffffff;
  overflow: hidden;
}

.apps-head {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.apps-head span {
  display: inline-block;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.apps-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1rem;
}

.apps-head h2 strong {
  color: #2f68df;
}

.apps-head p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #43536b;
  line-height: 1.6;
}

.apps-grid {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.app-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.3rem, 2vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem);
  min-height: clamp(340px, 26vw, 420px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 20px 55px rgba(0, 95, 168, 0.08);
  animation: appFadeUp 0.7s ease both;
}

.innovet-card {
  background: #e8f1ff;
  border: 1px solid rgba(0, 95, 168, 0.22);
}

.connect-card {
  background: #fff3ed;
  border: 1px solid rgba(244, 91, 31, 0.24);
  animation-delay: 0.12s;
}

.app-card::after {
  content: "";
  position: absolute;
  top: -75px;
  right: -75px;
  width: clamp(150px, 16vw, 220px);
  height: clamp(150px, 16vw, 220px);
  border-radius: 50%;
  background: rgba(47, 104, 223, 0.13);
}

.connect-card::after {
  background: rgba(244, 91, 31, 0.13);
}

.app-icon {
  position: relative;
  z-index: 2;
  width: clamp(90px, 5vw, 120px);
  height: clamp(90px, 5vw, 120px);
  border-radius: 18px;
  /* background: #2f68df; */
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.45rem, 2vw, 2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.app-icon img {
  border-radius: 20px;
}
.app-icon.orange {
  background: var(--color-accent);
}

.app-card h3,
.app-card h4,
.app-card p,
.app-btn {
  position: relative;
  z-index: 2;
}

.app-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2.2rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.3rem;
}

.app-card h4 {
  color: #2f68df;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.72rem, 0.85vw, 0.85rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.connect-card h4 {
  color: var(--color-accent);
}

.app-card p {
  max-width: 480px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
  color: #334155;
  margin-bottom: 1.8rem;
}

.app-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  font-weight: 700;
  color: #ffffff;
  transition: 0.3s ease;
}

.blue-btn {
  background: #2f68df;
}

.orange-btn {
  background: var(--color-accent);
}

.app-btn:hover {
  transform: translateY(-3px);
}

@keyframes appFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .apps-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .app-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .app-card {
    padding: 1.5rem;
    border-radius: 22px;
  }

  .app-btn {
    width: 100%;
  }
}

/* -------------------- */
/* ECOSYSTEM SECTION */
/* -------------------- */

.ecosystem-section {
  background: #2f68f2;
  color: #ffffff;
  text-align: center;
}

.ecosystem-head {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.ecosystem-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.ecosystem-head p {
  font-size: clamp(0.9rem, 1.15vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.ecosystem-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.stat-box h3 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.stat-box p {
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.75);
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .ecosystem-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2.5rem;
  }
}

@media (max-width: 520px) {
  /* .ecosystem-stats {
    grid-template-columns: 1fr;
  } */

  .stat-box {
    padding-block: 0.8rem;
  }
}

/* -------------------- */
/* ENQUIRY SECTION */
/* -------------------- */

.enquiry-section {
  background: #ffffff;
  overflow: hidden;
}

.enquiry-grid {
  display: grid;
  /* grid-template-columns: 0.95fr 1.05fr; */
  align-items: center;
  /* gap: clamp(2rem, 6vw, 6rem); */
  gap: clamp(2rem, 5vw, 4.5rem);

  max-width: 1180px;
  margin-inline: auto;
  grid-template-columns: 0.95fr 0.85fr;
}

/* LEFT */

.enquiry-content {
  animation: enquiryLeft 0.8s ease both;
}

.enquiry-content span {
  display: inline-block;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.enquiry-content h2 {
  /* font-size: clamp(1.4rem, 2.5vw, 2.65rem); */
  line-height: 1.15;
  color: #111827;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 650px;
  font-size: clamp(2rem, 3.6vw, 3.9rem);
  /* line-height: 1.12; */
}

.enquiry-content ul {
  display: grid;
  gap: 0.85rem;
}

.enquiry-content li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: #334155;
}

.enquiry-content li i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* FORM */

.enquiry-form {
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 95, 168, 0.12);
  border-radius: 10px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 24px 65px rgba(0, 95, 168, 0.12);
  animation: enquiryRight 0.8s ease both;
}

/* .enquiry-form::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(244, 91, 31, 0.1);
  pointer-events: none;
} */

.form-group {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111827;
}

.form-group input,
.form-group select {
  width: 100%;
  border: 1px solid rgba(0, 95, 168, 0.16);
  background: #f4f6ff;
  border-radius: 10px;
  /* height: 40px; */
  padding: 0.95rem 1rem;
  font-size: 0.95rem;
  color: #111827;
  outline: none;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(0, 95, 168, 0.08);
}

.enquiry-submit-btn {
  position: relative;
  z-index: 2;
  /* width: 100%; */
  border-radius: 12px;
  background: var(--color-accent);
  color: #ffffff;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.3s ease;
  margin-top: 0.4rem;
}

.enquiry-submit-btn:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.form-message {
  position: relative;
  z-index: 2;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.form-message.success {
  color: var(--color-primary);
}

.form-message.error {
  color: var(--color-accent);
}

.honeypot-field {
  display: none;
}

/* ANIMATIONS */

@keyframes enquiryLeft {
  from {
    opacity: 0;
    transform: translateX(-35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes enquiryRight {
  from {
    opacity: 0;
    transform: translateX(35px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .enquiry-grid {
    grid-template-columns: 1fr;
  }

  .enquiry-content {
    text-align: center;
  }

  .enquiry-content p {
    margin-inline: auto;
  }

  .enquiry-content ul {
    max-width: 420px;
    margin-inline: auto;
  }

  .enquiry-content li {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .enquiry-form {
    border-radius: 24px;
    padding: 1.3rem;
  }

  .form-group input,
  .form-group select {
    border-radius: 8px;
    height: 42px;
    padding: 0 1rem;
  }
}

/* -------------------- */
/* ADVANTAGE SPLIT */
/* -------------------- */

.advantage-split-section {
  background: #ffffff;
  overflow: hidden;
}

.advantage-split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.advantage-split-image {
  position: relative;
  border-radius: clamp(1.5rem, 3vw, 2.5rem);
  background: #eaf3ff;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  box-shadow: 0 24px 65px rgba(0, 95, 168, 0.1);
}

.advantage-split-image::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: clamp(180px, 18vw, 280px);
  height: clamp(180px, 18vw, 280px);
  border-radius: 50%;
  background: rgba(244, 91, 31, 0.14);
}

.advantage-split-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.advantage-split-content > span {
  display: inline-block;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.advantage-split-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  line-height: 1.05;
  color: #111827;
  margin-bottom: 1rem;
}

.advantage-split-content h2 strong {
  color: #2f68df;
}

.advantage-intro {
  max-width: 620px;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.7;
  color: #4f5f7a;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.advantage-list {
  display: grid;
  gap: 1.1rem;
}

.advantage-row {
  background: #ffffff;
  border: 1px solid rgba(0, 95, 168, 0.12);
  border-radius: 24px;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1rem;
  align-items: center;
  box-shadow: 0 16px 42px rgba(0, 95, 168, 0.06);
  transition: 0.3s ease;
}

.advantage-row:hover {
  transform: translateX(8px);
  box-shadow: 0 22px 55px rgba(0, 95, 168, 0.1);
}

.advantage-row-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
}

.advantage-row-icon.blue {
  background: #2f68df;
  color: #ffffff;
}

.advantage-row-icon.orange {
  background: var(--color-accent);
  color: #ffffff;
}

.advantage-row-icon.soft {
  background: #e8f1ff;
  color: #2f68df;
}

.advantage-row h3 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: #111827;
  margin-bottom: 0.35rem;
}

.advantage-row p {
  font-size: clamp(0.85rem, 1vw, 0.96rem);
  line-height: 1.55;
  color: #4f5f7a;
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .advantage-split-grid {
    grid-template-columns: 1fr;
  }

  .advantage-split-content {
    text-align: center;
  }

  .advantage-intro {
    margin-inline: auto;
  }

  .advantage-split-image {
    min-height: 360px;
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }

  .advantage-row {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .advantage-split-image {
    min-height: 280px;
    border-radius: 24px;
  }

  .advantage-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .advantage-row-icon {
    margin-inline: auto;
  }

  .advantage-row:hover {
    transform: translateY(-4px);
  }
}

/* -------------------- */
/* CLIENT STORY SECTION */
/* -------------------- */

.client-story-section {
  background: #ffffff;
  overflow: hidden;
}

.client-story-head {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.client-story-head span {
  display: inline-block;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.client-story-head h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.1;
  color: #111827;
  margin-bottom: 1rem;
}

.client-story-head p {
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  color: #4f5f7a;
  line-height: 1.6;
}

.client-story-slider {
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.client-story-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 95, 168, 0.14);
  aspect-ratio: 4 / 5;
  background: #eaf3ff;
}

.client-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: storyFade 0.45s ease both;
}

.client-story-content {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.client-story-content::before {
  content: "“";
  position: absolute;
  right: 0;
  top: -2.5rem;
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 1;
  color: rgba(0, 95, 168, 0.06);
  font-weight: 700;
  pointer-events: none;
}

.story-stars {
  display: flex;
  gap: 0.3rem;
  color: var(--color-accent);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.client-story-content p {
  position: relative;
  z-index: 2;
  font-size: clamp(0.8rem, 1.8vw, 2rem);
  line-height: 1.35;
  color: #111827;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  animation: storyFade 0.45s ease both;
}

.story-user {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.story-user span {
  width: 4px;
  height: 48px;
  border-radius: 999px;
  background: var(--color-accent);
}

.story-user h4 {
  font-size: 1.05rem;
  color: #111827;
  margin-bottom: 0.2rem;
}

.story-user small {
  font-size: 0.85rem;
  color: #4f5f7a;
}

.story-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.story-arrows {
  display: flex;
  gap: 0.6rem;
}

.story-arrows button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.story-arrows button:hover {
  background: var(--color-accent);
  transform: translateY(-2px);
}

.story-dots {
  display: flex;
  gap: 0.45rem;
}

.story-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 95, 168, 0.22);
  transition: 0.3s ease;
}

.story-dots button.active {
  width: 28px;
  background: var(--color-primary);
}

@keyframes storyFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* -------------------- */
/* RESPONSIVE */
/* -------------------- */

@media (max-width: 900px) {
  .client-story-slider {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 1.8rem;
  }

  .client-story-image {
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
  }

  .client-story-content {
    text-align: center;
    padding: 0;
  }

  .story-stars,
  .story-user,
  .story-controls {
    justify-content: center;
  }

  .story-user {
    flex-direction: column;
    gap: 0.5rem;
  }

  .story-user span {
    width: 42px;
    height: 4px;
  }

  .story-controls {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .client-story-content p {
    font-size: clamp(1.25rem, 7vw, 1.8rem);
  }

  .client-story-image {
    max-width: 300px;
  }
}
/* -------------------- */
/* FINAL CTA SECTION */
/* -------------------- */

.final-cta-section {
  /* background: #111827; */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)),
    url("../assets/ecosystem_bg.png");

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.final-cta-content {
  max-width: 780px;
  margin-inline: auto;
}

.final-cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.final-cta-content p {
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.final-btn {
  min-width: 220px;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  transition: 0.3s ease;
}

.white-blue {
  background: #ffffff;
  color: #2f68df;
}

.white-orange {
  background: #ffffff;
  color: var(--color-accent);
}

.outline-btn {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.final-btn:hover {
  transform: translateY(-3px);
}

.white-blue:hover {
  background: #2f68df;
  color: #ffffff;
}

.white-orange:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.outline-btn:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #111827;
}

@media (max-width: 520px) {
  .final-cta-buttons {
    flex-direction: column;
  }

  .final-btn {
    width: 100%;
  }

  .final-cta-content h2 {
    line-height: 1.15;
  }
}
